home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / misc / emu / arosdev.lha / AROS / workbench / demos / helloworld.c < prev    next >
C/C++ Source or Header  |  1997-01-27  |  557b  |  24 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: helloworld.c,v 1.4 1997/01/27 00:22:39 ldp Exp $
  4.     $Log: helloworld.c,v $
  5.     Revision 1.4  1997/01/27 00:22:39  ldp
  6.     Include proto instead of clib
  7.  
  8.     Revision 1.3  1996/09/17 16:43:00  digulla
  9.     Use general startup code
  10.  
  11.     Revision 1.2  1996/08/01 17:40:44  digulla
  12.     Added standard header for all files
  13.  
  14.     Desc: most simple demo for AROS
  15.     Lang: english
  16. */
  17. #include <proto/dos.h>
  18.  
  19. int main (int argc, char ** argv)
  20. {
  21.     Write (Output (), "hello, world\n", 13);
  22.     return 0;
  23. }
  24.